// source --> https://ougarit.fr/wp-content/themes/simplify/js/jqFancyTransitions.1.8.min.js?ver=5.5.5 /** *For Simplify *Modification by D5 Creation (https://d5creation.com) on *jqFancyTransitions - jQuery plugin * @version: 1.8 (2010/06/13) * @requires jQuery v1.2.2 or later * @author Ivan Lazarevic * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html **/ (function(jQuery){var opts=new Array;var level=new Array;var img=new Array;var links=new Array;var titles=new Array;var order=new Array;var imgInc=new Array;var inc=new Array;var stripInt=new Array;var imgInt=new Array;jQuery.fn.jqFancyTransitions=jQuery.fn.jqfancytransitions=function(options){init=function(el){opts[el.id]=jQuery.extend({},jQuery.fn.jqFancyTransitions.defaults,options);img[el.id]=new Array();links[el.id]=new Array();titles[el.id]=new Array();order[el.id]=new Array();imgInc[el.id]=0;inc[el.id]=0;params=opts[el.id];if(params.effect=='zipper'){params.direction='alternate';params.position='alternate';} if(params.effect=='wave'){params.direction='alternate';params.position='top';} if(params.effect=='curtain'){params.direction='alternate';params.position='curtain';} stripWidth=parseInt(params.width/params.strips);gap=params.width-stripWidth*params.strips;stripLeft=0;jQuery.each(jQuery('#'+el.id+' img'),function(i,item){img[el.id][i]=jQuery(item).attr('src');links[el.id][i]=jQuery(item).next().attr('href');titles[el.id][i]=jQuery(item).attr('alt')?jQuery(item).attr('alt'):'';jQuery(item).hide();});jQuery('#'+el.id).css({'background-image':'url('+img[el.id][0]+')','width':params.width,'height':params.height,'position':'relative','background-position':'top left',});jQuery('#'+el.id).append("
"+titles[el.id][0]+"
");if(titles[el.id][imgInc[el.id]]) jQuery('#ft-title-'+el.id).css('opacity',opts[el.id].titleOpacity);else jQuery('#ft-title-'+el.id).css('opacity',0);if(params.navigation){jQuery.navigation(el);jQuery('#ft-buttons-'+el.id).children().first().addClass('ft-button-'+el.id+'-active');} odd=1;for(j=1;j0){tstripWidth=stripWidth+1;gap--;}else{tstripWidth=stripWidth;} if(params.links) jQuery('#'+el.id).append("");else jQuery('#'+el.id).append("
");jQuery("#ft-"+el.id+j).css({'background-position':-stripLeft+'px top','left':stripLeft});stripLeft+=tstripWidth;if(params.position=='bottom') jQuery("#ft-"+el.id+j).css('bottom',0);if(j%2==0&¶ms.position=='alternate') jQuery("#ft-"+el.id+j).css('bottom',0);if(params.direction=='fountain'||params.direction=='fountainAlternate'){order[el.id][j-1]=parseInt(params.strips/2)-(parseInt(j/2)*odd);order[el.id][params.strips-1]=params.strips;odd*=-1;}else{order[el.id][j-1]=j;}} jQuery('.ft-'+el.id).mouseover(function(){opts[el.id].pause=true;jQuery('#ft-prev-'+el.id).css({'opacity':.5,});jQuery('#ft-next-'+el.id).css({'opacity':.5,});});jQuery('.ft-'+el.id).mouseout(function(){opts[el.id].pause=false;jQuery('#ft-prev-'+el.id).css({'opacity':.1,});jQuery('#ft-next-'+el.id).css({'opacity':.1,});});jQuery('#ft-title-'+el.id).mouseover(function(){opts[el.id].pause=true;});jQuery('#ft-title-'+el.id).mouseout(function(){opts[el.id].pause=false;});jQuery('.ft-prev').mouseover(function(){jQuery('#ft-prev-'+el.id).css({'opacity':.5,});jQuery('#ft-next-'+el.id).css({'opacity':.5,});});jQuery('.ft-next').mouseover(function(){jQuery('#ft-prev-'+el.id).css({'opacity':.5,});jQuery('#ft-next-'+el.id).css({'opacity':.5,});});jQuery('.ft-prev').mouseout(function(){jQuery('#ft-prev-'+el.id).css({'opacity':.1,});jQuery('#ft-next-'+el.id).css({'opacity':.1,});});jQuery('.ft-next').mouseout(function(){jQuery('#ft-prev-'+el.id).css({'opacity':.1,});jQuery('#ft-next-'+el.id).css({'opacity':.1,});});clearInterval(imgInt[el.id]);imgInt[el.id]=setInterval(function(){jQuery.transition(el)},params.delay+params.stripDelay*params.strips);};jQuery.transition=function(el,direction){if(opts[el.id].pause==true)return;stripInt[el.id]=setInterval(function(){jQuery.strips(order[el.id][inc[el.id]],el)},opts[el.id].stripDelay);jQuery('#'+el.id).css({'background-image':'url('+img[el.id][imgInc[el.id]]+')'});if(typeof(direction)=="undefined") imgInc[el.id]++;else if(direction=='prev') imgInc[el.id]--;else imgInc[el.id]=direction;if(imgInc[el.id]==img[el.id].length){imgInc[el.id]=0;} if(imgInc[el.id]==-1){imgInc[el.id]=img[el.id].length-1;} if(titles[el.id][imgInc[el.id]]!=''){jQuery('#ft-title-'+el.id).animate({opacity:0},opts[el.id].titleSpeed,function(){jQuery(this).html(titles[el.id][imgInc[el.id]]).animate({opacity:opts[el.id].titleOpacity},opts[el.id].titleSpeed);});}else{jQuery('#ft-title-'+el.id).animate({opacity:0},opts[el.id].titleSpeed);} inc[el.id]=0;buttons=jQuery('#ft-buttons-'+el.id).children();buttons.each(function(index){if(index==imgInc[el.id]){jQuery(this).addClass('ft-button-'+el.id+'-active');}else{jQuery(this).removeClass('ft-button-'+el.id+'-active');}});if(opts[el.id].direction=='random') jQuery.fisherYates(order[el.id]);if((opts[el.id].direction=='right'&&order[el.id][0]==1)||opts[el.id].direction=='alternate'||opts[el.id].direction=='fountainAlternate') order[el.id].reverse();};jQuery.strips=function(itemId,el){temp=opts[el.id].strips;if(inc[el.id]==temp){clearInterval(stripInt[el.id]);return;} jQuery('.ft-'+el.id).attr('href',links[el.id][imgInc[el.id]]);if(opts[el.id].position=='curtain'){currWidth=jQuery('#ft-'+el.id+itemId).width();jQuery('#ft-'+el.id+itemId).css({width:0,opacity:0,'background-image':'url('+img[el.id][imgInc[el.id]]+')'});jQuery('#ft-'+el.id+itemId).animate({width:currWidth,opacity:1},1000);}else{jQuery('#ft-'+el.id+itemId).css({height:0,opacity:0,'background-image':'url('+img[el.id][imgInc[el.id]]+')'});jQuery('#ft-'+el.id+itemId).animate({height:opts[el.id].height,opacity:1},1000);} inc[el.id]++;};jQuery.navigation=function(el){jQuery('#'+el.id).append(" ");jQuery('#'+el.id).append(" ");jQuery('#ft-prev-'+el.id).css({'position':'absolute','top':params.height/2-15,'left':5,'z-index':1001,}).click(function(e){e.preventDefault();jQuery.transition(el,'prev');clearInterval(imgInt[el.id]);imgInt[el.id]=setInterval(function(){jQuery.transition(el)},params.delay+params.stripDelay*params.strips);});jQuery('#ft-next-'+el.id).css({'position':'absolute','top':params.height/2-15,'right':5,'z-index':1001,}).click(function(e){e.preventDefault();jQuery.transition(el);clearInterval(imgInt[el.id]);imgInt[el.id]=setInterval(function(){jQuery.transition(el)},params.delay+params.stripDelay*params.strips);});jQuery("
").insertAfter(jQuery('#'+el.id));for(k=1;k"+k+"");} jQuery('.ft-button-'+el.id).css({'padding':5});jQuery.each(jQuery('.ft-button-'+el.id),function(i,item){jQuery(item).click(function(e){e.preventDefault();jQuery.transition(el,i);clearInterval(imgInt[el.id]);imgInt[el.id]=setInterval(function(){jQuery.transition(el)},params.delay+params.stripDelay*params.strips);})});} jQuery.fisherYates=function(arr){var i=arr.length;if(i==0)return false;while(--i){var j=Math.floor(Math.random()*(i+1));var tempi=arr[i];var tempj=arr[j];arr[i]=tempj;arr[j]=tempi;}} this.each(function(){init(this);});};jQuery.fn.jqFancyTransitions.defaults={width:1050,height:400,strips:20,delay:5000,stripDelay:50,titleOpacity:1,titleSpeed:1000,position:'alternate',direction:'fountainAlternate',effect:'zipper',navigation:false,links:false};})(jQuery); // source --> https://ougarit.fr/wp-content/themes/simplify/js/responsiveslides.js?ver=5.5.5 /*! ResponsiveSlides.js v1.55 * http://responsiveslides.com * http://viljamis.com * * Copyright (c) 2011-2012 @viljamis * Available under the MIT license */ /*jslint browser: true, sloppy: true, vars: true, plusplus: true, indent: 2 */ (function ($, window, i) { $.fn.responsiveSlides = function (options) { // Default settings var settings = $.extend({ "auto": true, // Boolean: Animate automatically, true or false "speed": 500, // Integer: Speed of the transition, in milliseconds "timeout": 4000, // Integer: Time between slide transitions, in milliseconds "pager": false, // Boolean: Show pager, true or false "nav": false, // Boolean: Show navigation, true or false "random": false, // Boolean: Randomize the order of the slides, true or false "pause": false, // Boolean: Pause on hover, true or false "pauseControls": true, // Boolean: Pause when hovering controls, true or false "prevText": "Previous", // String: Text for the "previous" button "nextText": "Next", // String: Text for the "next" button "maxwidth": "", // Integer: Max-width of the slideshow, in pixels "navContainer": "", // Selector: Where auto generated controls should be appended to, default is after the